home *** CD-ROM | disk | FTP | other *** search
/ Master Visual Basic 3 / Master Visual Basic 3 (SAMS Publishing) (1994).ISO / mvprog / original / ch04 / document.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1994-03-24  |  842 b   |  30 lines

  1. VERSION 2.00
  2. Begin Form frmDocument 
  3.    Caption         =   "<1> Untitled"
  4.    ClientHeight    =   4020
  5.    ClientLeft      =   1095
  6.    ClientTop       =   1485
  7.    ClientWidth     =   7365
  8.    Height          =   4425
  9.    Left            =   1035
  10.    LinkTopic       =   "Form1"
  11.    MDIChild        =   -1  'True
  12.    ScaleHeight     =   4020
  13.    ScaleWidth      =   7365
  14.    Top             =   1140
  15.    Width           =   7485
  16.    Begin TextBox txtDocument 
  17.       Height          =   3015
  18.       Left            =   0
  19.       MultiLine       =   -1  'True
  20.       ScrollBars      =   3  'Both
  21.       TabIndex        =   0
  22.       Top             =   0
  23.       Width           =   5295
  24.    End
  25. Option Explicit
  26. Sub Form_Resize ()
  27.     Me.txtDocument.Height = Me.ScaleHeight
  28.     Me.txtDocument.Width = Me.ScaleWidth
  29. End Sub
  30.